home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / Expander.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  662b  |  34 lines

  1. #ifndef Expander_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define Expander_First
  7.  
  8. #include "Box.h"
  9.  
  10. //---- Expander --------------------------------------------------------------
  11.  
  12. class Expander: public Box {
  13. public:
  14.     MetaDef(Expander);
  15.     Expander(int id, Direction d, Point g);
  16.     Expander(int id, Direction d, Point g, VObject *vop, ...);
  17.     Expander(int id, Direction d, Point g, SeqCollection *c);
  18. protected:
  19.     void Init(Direction d);
  20. };
  21.  
  22. class HExpander : public Expander {
  23. public:
  24.     HExpander(Point g, VObject *vop, ...);
  25. };
  26.  
  27. class VExpander : public Expander {
  28. public:
  29.     VExpander(Point g, VObject *vop, ...);
  30. };
  31.  
  32. #endif
  33.  
  34.